summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/impl-foreign-for-foreign[local].rs
blob: 0b1413edf37896946109ecfae69861f51029135c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// compile-flags:--crate-name=test
// aux-build:coherence_lib.rs
// check-pass

extern crate coherence_lib as lib;
use lib::*;
use std::rc::Rc;

struct Local<T>(Rc<T>);

impl Remote1<Local<i32>> for i32 {}
impl<T> Remote1<Local<T>> for f32 {}

fn main() {}